diff options
| author | real-zephex <[email protected]> | 2024-04-07 19:30:25 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-07 19:30:25 +0530 |
| commit | 1cca92c67651972e6671bfbd7fee325cccd64690 (patch) | |
| tree | 2c569fcd87048af5d3b2fd23a89b28c50565a109 /src/app/anime/[id]/[...animeId] | |
| parent | Merge pull request #3 from real-zephex/kdrama-section-rewrite (diff) | |
| parent | idek (diff) | |
| download | dramalama-1cca92c67651972e6671bfbd7fee325cccd64690.tar.xz dramalama-1cca92c67651972e6671bfbd7fee325cccd64690.zip | |
Merge pull request #4 from real-zephex/cloudflare-fix
Cloudflare fix
Diffstat (limited to 'src/app/anime/[id]/[...animeId]')
| -rw-r--r-- | src/app/anime/[id]/[...animeId]/page.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/anime/[id]/[...animeId]/page.jsx b/src/app/anime/[id]/[...animeId]/page.jsx index 950f618..f5505e5 100644 --- a/src/app/anime/[id]/[...animeId]/page.jsx +++ b/src/app/anime/[id]/[...animeId]/page.jsx @@ -9,6 +9,8 @@ import styles from "./video.module.css"; import { redirect } from "next/navigation"; import Link from "next/link"; +export const runtime = 'edge'; + export default async function Video({ params }) { let link; const id = params.animeId[0]; |